Path: api/v1/accounts/debtors/invoicebalance/{invno}
This endpoint supports the following methods:
GET
Summary: Returns original amount, balance due and currency code of invoice
Response content
| Attribute | Type | Description |
|---|---|---|
| amount | number | Returns original amount of invoice |
| balanceDue | number | Returns balance due amount of invoice |
| currencyCode | string | Returns currency code of invoice |
| invNo | integer | Invoice number |
Path: api/v1/accounts/debtors/invoicebalance/1 Response: This example shows the maximum set of fields the endpoint can return, all populated. A real response only contains the data that applies to that record, so fields that are empty or not relevant are omitted — do not assume every field shown here will be present in every response.
Example GET
{
"invNo": 1,
"amount": 10.0000,
"balanceDue": 10.0000,
"currencyCode": "EUR"
}